c3605957950e219a3c1451aeb09bb839335bdf9f,test/org/apache/tomcat/util/net/jsse/openssl/TestCipher.java,TestCipher,testOpenSSLCipherAvailability,#,76
Before Change
}
// OpenSSL does not implement any DH_DSS or DH_RSA algorithms so
// exclude them from the expected list
if (openSSLAlias.contains("DH-DSS")) {
continue;
}
if (openSSLAlias.contains("DH-RSA")) {
After Change
}
// OpenSSL does not implement any DH-DSS or DH-RSA algorithms so
// exclude them from the expected list
if (openSSLAlias.startsWith("DH-DSS") || openSSLAlias.startsWith("EXP-DH-DSS")) {
continue;
}
if (openSSLAlias.startsWith("DH-RSA") || openSSLAlias.startsWith("EXP-DH-RSA")) {